home *** CD-ROM | disk | FTP | other *** search
/ MacTech 1 to 12 / MacTech-vol-1-12.toast / Source / MacTech® Magazine / Volume 09 - 1993 / 09.06 Jun 93 / C Shell XCMD / BDisplayOutput.h < prev    next >
Encoding:
C/C++ Source or Header  |  1992-07-17  |  783 b   |  33 lines  |  [TEXT/KAHL]

  1. /**************************************************************
  2.  * BDisplayOutput.h
  3.  *
  4.  * Display the contents of a Handle in a text screen.
  5.  *
  6.  * © copyright 1991, KSS Scientific Consultants.
  7.  *
  8.  **************************************************************/
  9.  
  10. #define _H_BDisplayOutput
  11.  
  12. #include "BEditDoc.h"
  13.  
  14. class BDisplayOutput : public BEditDoc
  15. {
  16. private:
  17.     //static Boolean        fQuitStatus;
  18.     Boolean        fQuitStatus;
  19.  
  20. public:    
  21.     void    IBDisplayOutput(CApplication *anApplication, Boolean printable);
  22.     
  23.     void    BuildWindow (Handle theData);
  24.     void    EventManagement(void);
  25.     void    DisplayRun(Handle theText);
  26.     virtual void    CloseWind(CWindow *theWindow);
  27.     virtual void    DoCommand(long theCommand);
  28.  
  29. private:
  30.     virtual void     SetQuitStatus(Boolean status);
  31.     virtual Boolean    GetQuitStatus(void);
  32. };
  33.